Introduction

David Bowie created an expansive body of work. Spotify’s biography of him starts by noting that “[t]he cliché about David Bowie is that he was a musical chameleon […]” What patterns can we find in his many coloured oeuvre? Does clustering show the Berlin trilogy as an entity separate from the other albums? If so, can we see an influence of recording location in general? Do the albums with producer Tony Visconti form a cluster? I hope to visualise some interesting results.

The corpus consists of the studio albums. Compilations, live albums and rarities will be excluded from the selection. This is to prevent overlap and to focus the results.

Note: Some of the claims made in the following texts no longer hold. They were based on a subset of the corpus, namely the first 17 studio albums by Bowie, from his debut David Bowie (1967) to Never Let Me Down (1987).

This analysis uses the R packages Spotifyr and compmus to process the data provided by the Spotify Web API.

Instrumentation


The Berlin Trilogy consists of the albums Low (1977), Heroes (1977), and Lodger (1979). Collaborator Brian Eno’s instrumental ambient influence is apparent. Let’s look at how the trilogy scores at instrumentalness and acousticness in Spotify’s analysis.

The mean instrumentalness of the corpus is 0.1 and the median is 0.00112.

Where most albums score low on instrumentalness, Heroes and Low exhibit a high degree of instrumentalness. Lodger is somewhat instrumental, but not enough to identify the Berlin Trilogy by instrumentalness alone. But if we combine instrumentalness (at least one track above 0.7) with a wide spread on the acousticness scale, we have a description of what makes the trilogy stand out in this visualization.

“acousticness: A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic. The distribution of values for this feature look like this:” [insert picture]

Emotion


Sadness is in the bottom left corner, happyness in the top right corner, anger/fear in the top left corner, and calmness is in the bottom right corner. Like the vast majority of music, the tracks are not calm. The tracks are spread out on the emotional spectrum but shun the angry/fearful corner, where some of the darker alternative genres live. This is pop music, after all. That said, the trilogy within the Trilogy has a somewhat gloomy feel which makes it stand out.

Sadness


Note that sadness on the x scale goes from 0.5 to - 0.5. Sadness is defined here as low valence - which means negative emotions - combined with low energy. Compare with the previous plot, where sadness is in the bottom left corner. Sadness is based on a track’s distance to that corner.

‘Modern Love’ on the album Let’s Dance is almost the happiest song.

Instrumentalness versus Valence


Valence is a measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track. Tracks with high valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low valence sound more negative (e.g. sad, depressed, angry). [Cited from Spotify.]

The instrumental ‘Weeping Wall’ on the album Low does not sound as sad as one would perhaps expect given the title. The Spotify algorithm estimates its valence at 0.559.

The mean valence of the corpus is 0.523 and the median is 0.527.

The five tracks with lowest valence are all from the Berlin Trilogy albums Low and “Heroes”. ‘Sense of Doubt’ is the track with lowest valence in the corpus (0.0365). The descending four-note motif suggests suspense or even dread and sounds like it was sampled from a thriller or horror film. ‘Sense of Doubt’ is the first of three instrumental tracks on “Heroes”. The three triangles in the top left corner represent this trilogy within the Trilogy. If you connect these three tracks with lines to get a triangle, ‘Art Decade’ from the album Low falls within it. These low-valence instrumental tracks make Low and “Heroes” stand out from the more traditional pop sound of most Bowie albums. Do these instrumentals constitute the sonic quintessence of the Berlin Trilogy?

Outlier: Sense of Doubt


‘Sense of Doubt’ is the first of three instrumental tracks on “Heroes”. This is the track with lowest valence in the corpus (0.0365).

In the chromagram we see the filtered white noise of the first seven seconds. Throughout the instrumental the A is very present.


Listen.


With artwork.

Timbre


In ‘Sense of Doubt’, the low-register four-note piano riff is juxtaposed with a high pitched synth line. Perhaps this alternation can be seen in the plot, but it is not very clear. The structure is not simple (at the level of musical bars). Further analysis is needed.

Track-level Summaries


The Berlin Trilogy does not stand out in terms of tempo or track duration.

Classification

                          Truth
Prediction                 Tracks from other albums Berlin Trilogy
  Tracks from other albums                      222             20
  Berlin Trilogy                                 20             11

# A tibble: 3 x 3
  .metric  .estimator .estimate
  <chr>    <chr>          <dbl>
1 accuracy binary         0.853
2 kap      binary         0.272
3 j_index  binary         0.272

Let’s use a k-nearest neighbour algorithm to predict if a track is part of the Berlin Trilogy, with k = 1 and 10-fold cross-validation. Based on the features danceability, energy, loudness, speechiness, acousticness, instrumentalness, liveness, valence, tempo, duration_ms.

Note that the high accuracy is a bit misleading due to the relative rarity of the Trilogy label.